body {
  background-color: #0F1626;
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.safety-section {
  width: 1304px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 160px;
  padding-bottom: 365px;
  position: relative;
}

.blur-electricity {
  position: absolute;
  top: 700px;
  /* عدل حسب موقعها */
  left: 750px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
  /* يمنع التأثير على الضغط */
}

.blur-electricity-bottom {
  position: absolute;
  top: 1280px;
  /* عدل حسب موقعها */
  left: 750px;
  width: 717px;
  height: auto;
  z-index: 1;
  /* خليه خلف النص */
  pointer-events: none;
  /* يمنع التأثير على الضغط */
}

.safety-card {
  width: 100%;
  border-radius: 16px;
  padding: 36px 24px;
  background: #060A12;
  color: #ffffff;
  box-sizing: border-box;
  text-align: center;
}


.safety-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  /* margin: 0 0 16px 0; */
}

.safety-desc {
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
  padding-bottom: 65.5;
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden !important;
    width: 100vw;
    max-width: 100vw;
    position: relative;
    background-color: #0F1626;
  }

  .blur-electricity {
    display: none;
  }

  .blur-electricity-bottom {
    display: none;
  }

  .safety-section {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 32px 16px 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-x: hidden;
    box-sizing: border-box;
    margin-bottom: 50px;
  }

  .safety-section::-webkit-scrollbar {
    display: none;
  }

  .safety-card {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 20px 16px;
    background: linear-gradient(135deg, #0606061A 0%, #0F1626 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }

  .safety-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    text-align: left;
    line-height: 1.2;
    color: #ffffff;
  }

  .safety-desc {
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    text-align: left;
    line-height: 1.4;
    width: 100%;
    color: #cccccc;
    overflow: visible;
    text-overflow: unset;
    display: block;
    white-space: normal;
  }
}

@media (max-width: 440px) {
  .safety-section {
    padding: 24px 12px 24px 12px;
    gap: 16px;
  }

  .safety-card {
    padding: 16px 12px;
    border-radius: 8px;
    gap: 8px;
  }

  .safety-title {
    font-size: 16px;
    line-height: 1.1;
  }

  .safety-desc {
    font-size: 12px;
    line-height: 1.3;
  }
}